UIAlertController:警告控制器的執行流程如下:
1.使用者按下按鈕,執行func showAlert
2.showAlert會先產生警告控制器,後產生按鈕,再將按鈕加入警告控制器
3.推出警告控制器
設置UIALertController:
let myALert = UIAlertController(title: "Hello", message: "How are you?", preferredStyle: .alert)
設置警告控制器內的按鈕(退出):
let okAction = UIAlertAction(title: "OK", style: .default) {
(action:UIAlertAction) in
//What to do after press the button
self.dismiss(animated: true, completion: nil)
}
將按鈕加入警告控制器:
myALert.addAction(okAction)
如何呈現警告控制器:
present(myALert,animated: true, completion: nil)